home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 676-700 / 680 / atap / sourcecode / longtostring.c < prev    next >
Text File  |  1995-03-18  |  308b  |  16 lines

  1. /* Routine converts long integers to strings using the ingenious
  2.    sprintf() and sscanf() functions. */
  3.  
  4. LongtoString(value,outString)
  5.  
  6. long    value;
  7. char    *outString;
  8.  
  9. {
  10. static    char    storage[14];    /* enough room for 10 digits plus '-' sign */
  11.  
  12.     sprintf(storage,"%ld\0",value);
  13.     outString=storage;
  14.     return(0);
  15. }
  16.